home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / FILER / X-FILES.ZIP / 057 / !X-Files / s / errors next >
Text File  |  1996-04-04  |  2KB  |  33 lines

  1. ; Assembler function to give RM base address to C program
  2.  
  3.                 AREA            Errors, DATA, REL
  4.  
  5.                 MACRO
  6. $label          EB              $errNum, $errMsg
  7.                 EXPORT          $label
  8. $label          &               $errNum
  9.                 =               "$errMsg", 0
  10.                 ALIGN
  11.                 MEND
  12.  
  13. xFiles_BadPermission EB         1, "Must have at least read access (write would be nice too)"
  14. xFiles_CantFake EB              2, "Can't create a new image in a read only file"
  15. xFiles_NoMemory EB              3, "Not enough memory for X-Files workspace (RMA)"
  16. xFiles_ImageCorrupt EB          4, "Oh no! X-Files image is corrupt (you had a backup of course...)"
  17. xFiles_Truncated EB             5, "X-Files image read truncated"
  18. xFiles_Outside  EB              6, "Slack programming alert! Attempt to read/write outside a chunk's limits"
  19. xFiles_BrokenDir EB             7, "Broken directory"
  20. xFiles_BadDirMark EB            8, "I was just about to write an badly formed directory header. But I won't"
  21. xFiles_OutOfRange EB            9, "Internal number thing out of range"
  22. xFiles_NotImplemented EB        10, "Can't do that"
  23. xFiles_NotFound EB              11, "Not found"
  24. xFiles_NotADir  EB              12, "Not a directory"
  25. xFiles_NotAFile EB              13, "Not a file"
  26. xFiles_Locked   EB              14, "Locked"
  27. xFiles_BufferInUse EB           15, "The temporary workspace is already in use"
  28. xFiles_DirNotEmpty EB           16, "Directory not empty"
  29. xFiles_LostTrack EB             17, "I've lost track of an open file"
  30. xFiles_IsOpen    EB             18, "File is open"
  31.  
  32.                 END
  33.